home *** CD-ROM | disk | FTP | other *** search
- ; This is a sample auto folder setup program
-
- Dc ; this gives the next 'Wait' command the char 'c' if no other key
- ;is pressed...
-
- ; Play the 'Welcome sound'...
- >g:\sound\nt_comp\sound\hardcore.seg ; hmm, well - say that's hot...
-
- ; Now show the menu.
- PThis program is written by Klaus Pedersen
- P
- P Press 'A' for normal auto setup
- P 'B' for setup with GDOS
- P- and any other for no auto programs.
-
- ; And then wait for a key to be pressed.
- ; remember that 'c' is default if no other key have been pressed.
-
- WYour command master? - I'm waiting :
-
- ; Execute the programs {IF ch IN {a,b,c} THEN exec(...) }
- ?c?a?b!c:\system\tos14acc\poolfix3.prg
- ?c?a?b!c:\system\tos14acc\tos14fix.prg
- ?b!c:\auto_o\amclight.prx
- ?c?a?b!c:\system\tos14acc\maccel3.prg
-
- ; I have done it this way, to avoid that the program waits for a
- ; key press, when all programs have been executed.
-
- >g:\sound\nt_comp\sound\impact.seg
-
- ?cX ; IF ch == 'c' (the default) THEN exit.
-
- WPress any key... ; else wait for keypress